Retrieve specific cost target planning history entry.
GEThttps://app.nops.io/c/cost_page/cost_target_planning_history/:id/
Fetches detailed historical data for a specific cost target planning entry identified by its ID. Includes metrics and planning information over the relevant period.
Request
Path Parameters
id integerrequired
A unique integer value identifying this cost target planning history.
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
id ID (integer)
created date-time
modified date-time
history_date datenullable
actual_spend Actual spend (number)nullable
client Client (integer)
cost_target_planning Cost target planning (integer)nullable
{
"id": 0,
"created": "2024-07-29T15:51:28.071Z",
"modified": "2024-07-29T15:51:28.071Z",
"history_date": "2024-07-29",
"actual_spend": 0,
"client": 0,
"cost_target_planning": 0
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://app.nops.io/c/cost_page/cost_target_planning_history/:id/' \
-H 'Accept: application/json' \
-H 'x-nops-api-key: <API_KEY_VALUE>'
ResponseClear